Background

The Palmer Penguins datasets comes from the palmerpenguins package. You can install it using the code below:

install.packages("palmerpenguins")
# or 
# install.packages("remotes")
remotes::install_github("allisonhorst/palmerpenguins")

Original paper on Palmer Penguins:

Ecological Sexual Dimorphism and Environmental Variability within a Community of Antarctic Penguins (Genus Pygoscelis)
Kristen B. Gorman, Tony D. Williams, William R. Fraser. PloS ONE

Import

Code for obtaining data…


Information about the dataset…

Tidy/Wrangle

Code for tidying/wrangling data


More details on data…

Visualize

Code for visualizing the data


More details on visualizations

Future Work